home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000080_news@newsmaster….columbia.edu _Wed Sep 30 10:05:56 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA00792
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 30 Sep 1998 10:05:09 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA26706
  7.     for kermit.misc@watsun; Wed, 30 Sep 1998 10:04:41 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.os.qnx,comp.protocols.kermit.misc
  11. Subject: Re: [Q] cpp866 -> KOI8  Converter
  12. Date: 30 Sep 1998 14:02:36 GMT
  13. Organization: Columbia University
  14. Lines: 30
  15. Message-ID: <6utdls$ckq$1@apakabar.cc.columbia.edu>
  16. References: <01bdec1a$17520d00$86d354c2@leon>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.os.qnx:22212 comp.protocols.kermit.misc:9263
  19.  
  20. In article <01bdec1a$17520d00$86d354c2@leon>,
  21. Leonid Khait <lhait@diaspro.com> wrote:
  22. : Are there any cpp866 -> KOI8 char set convertors on QNX ?
  23. Yes, C-Kermit:
  24.  
  25.   http://www.columbia.edu/kermit/ck60.html
  26.  
  27. At the C-Kermit prompt, give the following command:
  28.  
  29.   translate <source-filename> cp866 koi8 <output-filename>
  30.  
  31. You can also translate while transferring.  For example, if you
  32. are uploading a file from DOS or Windows to QNX, tell the Kermit
  33. program on the DOS or Windows PC to:
  34.  
  35.   set file type text
  36.   set file character-set cp866
  37.   set transfer character-set cyrillic
  38.   send <filename>
  39.  
  40. and tell C-Kermit on QNX to:
  41.  
  42.   set file character-set koi8
  43.   receive
  44.  
  45. (The sending Kermit automatically tells the receiver about text
  46. mode and what the transfer character-set is.)
  47.  
  48. - Frank